home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libol / read_line.h.x < prev    next >
Text File  |  2005-10-16  |  417b  |  19 lines

  1. #ifndef CLASS_DEFINE
  2. struct line_handler
  3. {
  4.   struct ol_object super;
  5.   int (*(handler))(struct line_handler **self, struct read_handler **r, UINT32 length, UINT8 *line);
  6. };
  7. extern struct ol_class line_handler_class;
  8. #endif /* !CLASS_DEFINE */
  9.  
  10. #ifndef CLASS_DECLARE
  11. struct ol_class line_handler_class =
  12. { STATIC_HEADER,
  13.   0, "line_handler", sizeof(struct line_handler),
  14.   NULL,
  15.   NULL
  16. };
  17. #endif /* !CLASS_DECLARE */
  18.  
  19.